Name | GUI Element |
Description | A GUI element is a single object in a GUI.
It takes in a required "ui_type" key, which controls its type; see the "GUI System" group on the meta docs for documentation on each type. It also takes in optional "width" and "height" keys to control it's size, and optional "x" and "y" keys to control its position. A GUI element's position is the position of its top left corner, relative to the top left corner of its parent element. "parent element" refers to the GUI element this element is in, for example a button inside a plain panel. |
Group | GUI System |
Source | https://github.com/DenizenScript/Clientizen/blob/master/src/main/java/com/denizenscript/clientizen/scripts/containers/gui/GuiScriptContainer.java#L85 |